home *** CD-ROM | disk | FTP | other *** search
/ Aminet 7 / Aminet 7 - August 1995.iso / Aminet / text / hyper / ADtoHT2_1.lha / Source.lha / MyLib.lha / stdlib / abs.c next >
Encoding:
C/C++ Source or Header  |  1995-01-01  |  249 b   |  16 lines

  1. #if defined(__GNUC__) && !defined(__OPTIMIZE__)
  2. #error Please compile this file with -O
  3. #else
  4.  
  5. #include <stdlib.h>
  6.  
  7. /************************************************************************/
  8.  
  9. int (abs)(int Number)
  10.  
  11. {
  12.   return abs(Number);
  13. }
  14.  
  15. #endif
  16.